home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.386 < prev    next >
Text File  |  1996-02-12  |  28KB  |  625 lines

  1. Frequently Asked Questions (FAQS);faqs.386
  2.  
  3.  
  4.  
  5.     Some good general references are {Advanced MS-DOS} by Ray Duncan,
  6.     ISBN 1-55615-157-8; {8088 Assembler Language Programming:  The IBM
  7.     PC}, ISBN 0-672-22024-5, by Willen & Krantz; and {COMPUTE!'s Mapping
  8.     the IBM PC}, ISBN 0-942386-92-2.
  9.  
  10. Q304. How can I disable the print screen function?
  11.  
  12.     There are really two print screen functions:  1) print current
  13.     screen snapshot, triggered by PrintScreen or Shift-PrtSc or
  14.     Shift-grey*, and 2) turn on continuous screen echo, started and
  15.     stopped by Ctrl-P or Ctrl-PrtSc.
  16.  
  17.     1) Screen snapshot to printer
  18.        --------------------------
  19.  
  20.     The BIOS uses INT 5 for this.  Fortunately, you don't need to mess
  21.     with that interrupt handler.  The standard handler, in BIOSes dated
  22.     December 1982 or later, uses a byte at 0040:0100 (alias 0000:0500)
  23.     to determine whether a print screen is currently in progress.  If it
  24.     is, pressing PrintScreen again is ignored.  So to disable the screen
  25.     snapshot, all you have to do is write a 1 to that byte.  When the
  26.     user presses PrintScreen, the BIOS will think that a print screen is
  27.     already in progress and will ignore the user's keypress.  You can
  28.     re-enable PrintScreen by zeroing the same byte.
  29.  
  30.     Here's some simple code:
  31.  
  32.         void prtsc_allow(int allow) /* 0=disable, nonzero=enable */ {
  33.             unsigned char far* flag = (unsigned char far*)0x00400100UL;
  34.             *flag = (unsigned char)!allow;
  35.         }
  36.  
  37.     2) Continuous echo of screen to printer
  38.        ------------------------------------
  39.  
  40.     If ANSI.SYS is loaded, you can easily disable the continuous echo of
  41.     screen to printer (Ctrl-P or Ctrl-PrtSc).  Just redefine the keys by
  42.     "printing" strings like these to the screen (BASIC print, C printf,
  43.     Pascal Write statements, or ECHO command in batch files):
  44.  
  45.         <27>[0;114;"Ctrl-PrtSc disabled"p
  46.         <27>[16;"^P"p
  47.  
  48.     Change <27> in the above to an Escape character, ASCII 27.
  49.  
  50.     If you haven't installed ANSI.SYS, I can't offer an easy way to
  51.     disable the echo-screen-to-printer function.  Please send any tested
  52.     solutions to brown@ncoast.org and I'll add them to this list.
  53.  
  54.     Actually, you might not need to disable Ctrl-P and Ctrl-PrtSc.  If
  55.     your only concern is not locking up your machine, when you see the
  56.     "Abort, Retry, Ignore, Fail" prompt just press Ctrl-P again and then
  57.     I.  As an alternative, install one of the many print spoolers that
  58.     intercept printer-status queries and always return "Printer ready".
  59.  
  60. Q305. How can my program turn NumLock (CapsLock, ScrollLock) on or off?
  61.  
  62.     You need to twiddle bit 5, 6, or 4 of location 0040:0017.  Here's
  63.     some code:  lck( ) turns on a lock state, and unlck( ) turns it off.
  64.     (The status lights on some keyboards may not reflect the change.  If
  65.     yours is one, call INT 16 function 2, "get shift status", and that
  66.     may update them.  It will certainly do no harm.)
  67.  
  68.         #define NUM_LOCK  (1 << 5)
  69.         #define CAPS_LOCK (1 << 6)
  70.         #define SCRL_LOCK (1 << 4)
  71.         void lck(int shiftype) {
  72.             char far* kbdstatus = (char far*)0x00400017UL;
  73.             *kbdstatus |= (char)shiftype;
  74.         }
  75.         void unlck(int shiftype) {
  76.             char far* kbdstatus = (char far*)0x00400017UL;
  77.             *kbdstatus &= ~(char)shiftype;
  78.         }
  79.  
  80. Q306. How can I speed up the keyboard's auto-repeat?
  81.  
  82.     The keyboard speed has two components: delay (before a key that you
  83.     hold down starts repeating) and typematic rate (the speed once the
  84.     key starts repeating).  Most BIOSes since 1986 let software change
  85.     the delay and typematic rate by calling INT 16 function 3, "set
  86.     typematic rate and delay"; see Ralf Brown's interrupt list.  If you
  87.     have DOS 4.0 or later, you can use the MODE CON command that you'll
  88.     find in your DOS manual.
  89.  
  90.     On 83-key keyboards (mostly XTs), the delay and typematic rate can't
  91.     easily be changed.  According to the {PC Magazine} of 15 Jan 1991,
  92.     page 409, to adjust the typematic rate you need "a memory-resident
  93.     program which simply '[watches]' the keyboard to see if you're
  94.     holding down a key ... and after a certain time [starts] stuffing
  95.     extra copies of the held-down key into the buffer."  No source code
  96.     is given in that issue; but I'm told that the QUICKEYS utility that
  97.     {PC} published in 1986 does this sort of watching; you can download
  98.     source and object code in PD1:<MSDOS.PCMAG>VOL5N05.ARC from Simtel.
  99.  
  100. Q307. What is the SysRq key for?
  101.  
  102.     There is no standard use for the key.  The BIOS keyboard routines in
  103.     INT 16 simply ignore it; therefore so do the DOS input routines in
  104.     INT 21 as well as the keyboard routines in libraries supplied with
  105.     high-level languages.
  106.  
  107.     When you press or release a key, the keyboard triggers hardware line
  108.     IRQ1, and the CPU calls INT 9.  INT 9 reads the scan code from the
  109.     keyboard and the shift states from the BIOS data area.
  110.  
  111.     What happens next depends on whether your PC's BIOS supports an
  112.     enhanced keyboard (101 or 102 keys).  If so, INT 9 calls INT 15
  113.     function 4F to translate the scan code.  If the translated scan code
  114.     is 54 hex (for the SysRq key) then INT 9 calls INT 15 function 85
  115.     and doesn't put the keystroke into the keyboard buffer.  The default
  116.     handler of that function does nothing and simply returns.  (If your
  117.     PC has an older BIOS that doesn't support the extended keyboards,
  118.     INT 15 function 4F is not called.  Early ATs have 84-key keyboards,
  119.     so their BIOS calls INT 15 function 85 but nor 4F.)
  120.  
  121.     Thus your program is free to use SysRq for its own purposes, but at
  122.     the cost of some programming.  You could hook INT 9, but it's
  123.     probably easier to hook INT 15 function 85, which is called when
  124.     SysRq is pressed or released.
  125.  
  126. Q308. How can my program tell what kind of keyboard is on the system?
  127.  
  128.     Ralf Brown's Interrupt List includes MEMORY.LST, a detailed
  129.     breakdown by Robin Walker of the contents of the BIOS system block
  130.     that starts at 0040:0000.  Bit 4 of byte 0040:0096 is "1=enhanced
  131.     keyboard installed".  C code to test the keyboard type:
  132.         char far *kbd_stat_byte3 = (char far *)0x00400096UL;
  133.         if (0x10 & *kbd_stat_byte3)
  134.             /* 101- or 102-key keyboard is installed */
  135.  
  136.     {PC Magazine}'s 15 Jan 1991 issue suggests on page 412 that "for
  137.     some clones [the above test] is not foolproof".  If you use this
  138.     method in your program you should provide the user some way to
  139.     override this test, or at least some way to tell your program to
  140.     assume a non-enhanced keyboard.  The {PC Magazine} article suggests
  141.     a different approach to determining the type of keyboard.
  142.  
  143. Q309. How can I tell if input, output, or stderr has been redirected?
  144.  
  145.     Normally, input and output are associated with the console (i.e.,
  146.     with the keyboard and the screen, respectively).  If either is not,
  147.     you know that it has been redirected.  Some source code to check
  148.     this is available at the usual archive sites.
  149.  
  150.     If you program in Turbo Pascal, download the /pc/ts/tspa*.zip
  151.     collection of Turbo Pascal units from garbo; or from Simtel,
  152.     PD1:<MSDOS.TURBOPAS>TSPA*.ZIP.  (Choose TSPA3060.ZIP, TSPA3055.ZIP,
  153.     TSPA3050.ZIP, or TSPA3040.ZIP for Turbo Pascal 6.0, 5.5, 5.0, or 4.0
  154.     respectively.)  Source code is not included.  Also see the
  155.     information in garbo.uwasa.fi:/pc/ts/tsfaq*.zip Frequently Asked
  156.     Questions, the Turbo Pascal section.
  157.  
  158.     If you program in C, use isatty( ) if your implementation has it.
  159.     Otherwise, you can download PD1:<MSDOS.SYSUTL>IS_CON10.ZIP from
  160.     Simtel; it includes source code.
  161.  
  162.     Good references for the principles are {PC Magazine} 16 Apr 1991
  163.     (vol 10 nr 7) pg 374; Ray Duncan's {Advanced MS-DOS}, ISBN
  164.     1-55615-157-8, or Ralf Brown's interrupt list for INT 21 function
  165.     4400; and Terry Dettman and Jim Kyle's {DOS Programmer's Reference:
  166.     2d edition}, ISBN 0-88022-458-4, pp 602-603.
  167.  
  168. (continued in part 3)
  169. --
  170. Stan Brown, Oak Road Systems                      brown@Ncoast.ORG
  171. Cleveland, Ohio, USA
  172. Xref: bloom-picayune.mit.edu comp.os.msdos.programmer:18890 news.answers:4713
  173. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!eru.mt.luth.se!lunic!sunic!mcsun!uknet!doc.ic.ac.uk!agate!ames!sun-barr!cs.utexas.edu!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!ncoast!brown
  174. From: brown@NCoast.ORG (Stan Brown)
  175. Newsgroups: comp.os.msdos.programmer,news.answers
  176. Subject: comp.os.msdos.programmer FAQ part 3 of 4
  177. Message-ID: <msdos-faq.921220.3@NCoast.ORG>
  178. Date: 20 Dec 92 20:14:13 GMT
  179. Expires: Wed, 3 Feb 1993 20:14:13 GMT
  180. References: <msdos-faq.921220.1@NCoast.ORG>
  181. Followup-To: comp.os.msdos.programmer
  182. Organization: Oak Road Systems, Cleveland Ohio USA
  183. Lines: 898
  184. Approved: news-answers-request@MIT.Edu
  185. Supersedes: <msdos-faq.921205.3@NCoast.ORG>
  186.  
  187. Archive-name: msdos-programmer-faq/part3
  188. Last-modified: 20 December 1922
  189.  
  190.  
  191. (continued from part 2)         (no warranty on the code or information)
  192.  
  193. If the posting date is more than six weeks in the past, see instructions
  194. in part 4 of this list for how to get an updated copy.
  195.  
  196.             Copyright (C) 1992  Stan Brown, Oak Road Systems
  197.  
  198.  
  199. section 4.  Disks and files
  200. ===========================
  201.  
  202. Q401. What drive was the PC booted from?
  203.  
  204.     Under DOS 4.0 or later, load 3305 hex into AX; do an INT 21.  DL is
  205.     returned with an integer indicating the boot drive (1=A:, etc.).
  206.  
  207. Q402. How can I boot from drive b:?
  208.  
  209.     Download PD1:<MSDOS.DSKUTL>BOOT_B.ZIP (shareware) from Simtel.  The
  210.     included documentation says it works by writing a new boot sector on
  211.     a disk in your a: drive that redirects the boot to your b: drive.
  212.  
  213. Q403. Which real and virtual disk drives are valid?
  214.  
  215.     Use INT 21 function 29 (parse filename).  Point DS:SI at a null-
  216.     terminated ASCII string that contains the drive letter and a colon,
  217.     point ES:DI at a 37-byte dummy FCB buffer, set AX to 2900h, and do
  218.     an INT 21.  On return, AL is FF if the drive is invalid, something
  219.     else if the drive is valid.  RAM disks and SUBSTed drives are
  220.     considered valid.
  221.  
  222.     Unfortunately, the b: drive is considered valid even on a single-
  223.     diskette system.  You can check that special case by interrogating
  224.     the BIOS equipment byte at 0040:0010.  Bits 7-6 contain the one less
  225.     than the number of diskette drives, so if those bits are zero you
  226.     know that b: is an invalid drive even though function 29 says it's
  227.     valid.
  228.  
  229.     Following is some code originally posted by Doug Dougherty, with my
  230.     fix for the b: special case, tested only in Borland C++ 2.0 (in
  231.     the small model):
  232.  
  233.         #include <dos.h>
  234.         void drvlist(void)  {
  235.             char *s = "A:", fcb_buff[37];
  236.             int valid;
  237.             for (   ;  *s<='Z';  (*s)++) {
  238.                 _SI = (unsigned) s;
  239.                 _DI = (unsigned) fcb_buff;
  240.                 _ES = _DS;
  241.                 _AX = 0x2900;
  242.                 geninterrupt(0x21);
  243.                 valid = _AL != 0xFF;
  244.                 if (*s == 'B'  &&  valid) {
  245.                     char far *equipbyte = (char far *)0x00400010UL;
  246.                     valid = (*equipbyte & (3 << 6)) != 0;
  247.                 }
  248.                 printf("Drive '%s' is %sa valid drive.\n",
  249.                         s, valid ? "" : "not ");
  250.             }
  251.         }
  252.  
  253. Q404. How can I make my single floppy drive both a: and b:?
  254.  
  255.     Under any DOS since DOS 2.0, you can put the command
  256.  
  257.         assign b=a
  258.  
  259.     into your AUTOEXEC.BAT file.  Then, when you type "DIR B:" you'll no
  260.     longer get the annoying prompt to insert diskette B (and the even
  261.     more annoying prompt to insert A the next time you type "DIR A:").
  262.  
  263.     You may be wondering why anybody would want to do this.  Suppose you
  264.     use two different machines, maybe one at home and one at work.  One
  265.     of them has only a 3.5" diskette drive; the other machine has two
  266.     drives, and b: is the 3.5" one.  You're bound to type "dir b:" on
  267.     the first one, and get the nuisance message
  268.  
  269.         Insert diskette for drive B: and press any key when ready.
  270.  
  271.     But if you assign drive b: to point to a:, you avoid this problem.
  272.  
  273.     Caution:  there are a few commands, such as DISKCOPY, that will not
  274.     work right on ASSIGNed or SUBSTed drives.  See the DOS manual for
  275.     the full list.  Before typing one of those commands, be sure to turn
  276.     off the mapping by typing "assign" without arguments.
  277.  
  278.     The DOS 5.0 manual says that ASSIGN is obsolete, and recommends the
  279.     equivalent form of SUBST: "subst b: a:\".  Unfortunately, if this
  280.     command is executed when a: doesn't hold a diskette, the command
  281.     fails.  ASSIGN doesn't have this problem, so I must advise you to
  282.     disregard that particular bit of advice in the DOS manual.
  283.  
  284. Q405. Why won't my C program open a file with a path?
  285.  
  286.     You've probably got something like the following code:
  287.  
  288.         char *filename = "c:\foo\bar\mumble.dat";
  289.         . . .  fopen(filename, "r");
  290.  
  291.     The problem is that \f is a form feed, \b is a backspace, and \m is
  292.     m.  Whenever you want a backslash in a string constant in C, you
  293.     must use two backslashes:
  294.  
  295.         char *filename = "c:\\foo\\bar\\mumble.dat";
  296.  
  297.     This is a feature of every C compiler, because Dennis Ritchie
  298.     designed C this way.  It's a problem only on MS-DOS systems, because
  299.     only DOS (and Atari ST/TT running TOS, I'm told) uses the backslash
  300.     in directory paths.  But even in DOS this backslash convention
  301.     applies _only_ to string constants in your source code.  For file
  302.     and keyboard input at run time, \ is just a normal character, so
  303.     users of your program would type in file specs at run time the same
  304.     way as in DOS commands, with single backslashes.
  305.  
  306.     Another possibility is to code all paths in source programs with /
  307.     rather than \ characters:
  308.  
  309.         char *filename = "c:/foo/bar/mumble.dat";
  310.  
  311.     Ralf Brown writes that "All versions of the DOS kernel accept either
  312.     forward or backslashes as directory separators.  I tend to use this
  313.     form more frequently than backslashes since it is easier to type and
  314.     read."  This applies to DOS function calls (and therefore to calls
  315.     to the file library of every programming language), but not to DOS
  316.     commands.
  317.  
  318. Q406. How can I redirect printer output to a file?
  319.  
  320.     My personal favorite utility for this purpose is PRN2FILE from {PC
  321.     Magazine}, available from Simtel as PD1:<MSDOS.PRINTER>PRN2FILE.ARC,
  322.     or from garbo as prn2file.zip in /pc/printer.  ({PC Magazine} has
  323.     given copies away as part of its utilities disks, so you may already
  324.     have a copy.)
  325.  
  326.     Check the PD1:<MSDOS.PRINTER> directory at Simtel, or /pc/printer
  327.     at garbo, for lots of other printer-redirection utilities.
  328.  
  329. Q407. How can my program open more files than DOS's limit of 20?
  330.  
  331.     (This is a summary of an article Ralf Brown posted on 8 August 1992.)
  332.  
  333.     There are separate limits on files and file handles.  For example,
  334.     DOS opens three files but five file handles:  CON (stdin, stdout,
  335.     and stderr), AUX (stdaux), and PRN (stdprn).
  336.  
  337.     The limit in FILES= in CONFIG.SYS is a system-wide limit on files
  338.     opened by all programs (including the three that DOS opens and any
  339.     opened by TSRs); each process has a limit of 20 handles (including
  340.     the five that DOS opens).  Example:  CONFIG.SYS has FILES=40.  Then
  341.     program #1 will be able to open 15 file handles.  Assuming that the
  342.     program actually does open 15 handles pointing to 15 different
  343.     files, other programs could still open a total of 22 files (40-3-15
  344.     = 22), though no one program could open more than 15 file handles.
  345.  
  346.     If you're running DOS 3.3 or later, you can increase the per-process
  347.     limit of 20 file handles by a call to INT 21 function 67, Set Handle
  348.     Count.  Your program is still limited by the system-wide limit on
  349.     open files, so you may also need to increase the FILES= value in
  350.     your CONFIG.SYS file (and reboot).  The run-time library that you're
  351.     using may have a fixed-size table of file handles, so you may also
  352.     need to get source code for the module that contains the table,
  353.     increase the table size, and recompile it.
  354.  
  355. Q408. How can I read, create, change, or delete the volume label?
  356.  
  357.     In DOS 5.0 (and, I believe, in 4.0 as well), there are actually two
  358.     volume labels: one, the traditional one, is an entry in the root
  359.     directory of the disk; and the other is in the boot record along
  360.     with the serial number (see next Q).  The DIR and VOL commands
  361.     report the traditional label; the LABEL command reports the
  362.     traditional one but changes both of them.
  363.  
  364.     In DOS 4.0 and later, use INT 21 function 69 to access the boot
  365.     record's serial number and volume label together; see the next Q.
  366.  
  367.     Assume that by "volume label" you mean the traditional one, the one
  368.     that DIR and VOL display.  Though it's a directory entry in the root
  369.     directory, you can't change it using the newer DOS file-access
  370.     functions (3C, 41, 43); instead, use the old FCB-oriented directory
  371.     functions.  Specifically, you need to allocate a 64-byte buffer and
  372.     a 41- byte extended FCB (file control block).  Call INT 21 AH=1A to
  373.     find out whether there is a volume label.  If there is, AL returns 0
  374.     and you can change the label using DOS function 17 or delete it
  375.     using DOS function 13.  If there's no volume label, function 1A will
  376.     return FF and you can create a label via function 16.  Important
  377.     points to notice are that ? wildcards are allowed but * are not; the
  378.     volume label must be space filled not null terminated.
  379.  
  380.     The following MSC 7.0 code worked for me in DOS 5.0; the functions
  381.     it uses have been around since DOS 2.0.  The function parameter is 0
  382.     for the current disk, 1 for a:, 2 for b:, etc.  It doesn't matter
  383.     what your current directory is; these functions always search the
  384.     root directory for volume labels.  (I didn't try to change the
  385.     volume label of any networked drives.)
  386.  
  387.     // Requires DOS.H, STDIO.H, STRING.H
  388.     void vollabel(unsigned char drivenum) {
  389.         static unsigned char extfcb[41], dta[64], status, *newlabel;
  390.         int chars_got = 0;
  391.         #define DOS(buff,func) __asm { __asm mov dx,offset buff \
  392.             __asm mov ax,seg buff  __asm push ds  __asm mov ds,ax \
  393.             __asm mov ah,func  __asm int 21h  __asm pop ds \
  394.             __asm mov status,al }
  395.         #define getlabel(buff,prompt) newlabel = buff;  \
  396.             memset(newlabel,' ',11);  printf(prompt);   \
  397.             scanf("%11[^\n]%n", newlabel, &chars_got);  \
  398.             if (chars_got < 11) newlabel[chars_got] = ' ';
  399.  
  400.         // Set up the 64-byte transfer area used by function 1A.
  401.         DOS(dta, 1Ah)
  402.         // Set up an extended FCB and search for the volume label.
  403.         memset(extfcb, 0, sizeof extfcb);
  404.         extfcb[0] = 0xFF;             // denotes extended FCB
  405.         extfcb[6] = 8;                // volume-label attribute bit
  406.         extfcb[7] = drivenum;         // 1=A, 2=B, etc.; 0=current drive
  407.         memset(&extfcb[8], '?', 11);  // wildcard *.*
  408.         DOS(extfcb,11h)
  409.         if (status == 0) {            // DTA contains volume label's FCB
  410.             printf("volume label is %11.11s\n", &dta[8]);
  411.             getlabel(&dta[0x18], "new label (\"delete\" to delete): ");
  412.             if (chars_got == 0)
  413.                 printf("label not changed\n");
  414.             else if (strncmp(newlabel,"delete     ",11) == 0) {
  415.                 DOS(dta,13h)
  416.                 printf(status ? "label failed\n" : "label deleted\n");
  417.             }
  418.             else {                    // user wants to change label
  419.                 DOS(dta,17h)
  420.                 printf(status ? "label failed\n" : "label changed\n");
  421.             }
  422.         }
  423.         else {                        // no volume label was found
  424.             printf("disk has no volume label.\n");
  425.             getlabel(&extfcb[8], "new label (<Enter> for none): ");
  426.             if (chars_got > 0) {
  427.                 DOS(extfcb,16h)
  428.                 printf(status ? "label failed\n" : "label created\n");
  429.             }
  430.         }
  431.     }   // end function vollabel
  432.  
  433. Q409. How can I get the disk serial number?
  434.  
  435.     Use INT 21.  AX=6900 gets the serial number; AX=6901 sets it.  See
  436.     Ralf Brown's interrupt list, or page 496 of the July 1992 {PC
  437.     Magazine}, for details.
  438.  
  439.     This function also gets and sets the volume label, but it's the
  440.     volume label in the boot record, not the volume label that a DIR
  441.     command displays.  See the preceding Q.
  442.  
  443. Q410. What's the format of .OBJ, .EXE., .COM files?
  444.  
  445.     Please see section 2, "Compile and link".
  446.  
  447.  
  448. section 5. Serial ports (COM ports)
  449. ===================================
  450.  
  451. Q501. How do I set my machine up to use COM3 and COM4?
  452.  
  453.     Unless your machine is fairly old, it's probably already set up.
  454.     After installing the board that contains the extra COM port(s),
  455.     check the I/O addresses in word 0040:0004 or 0040:0006.  (In DEBUG,
  456.     type "D 40:4 L4" and remember that every word is displayed low
  457.     byte first, so if you see "03 56" the word is 5603.)  If those
  458.     addresses are nonzero, your PC is ready to use the ports and you
  459.     don't need the rest of this answer.
  460.  
  461.     If the I/O address words in the 0040 segment are zero after you've
  462.     installed the I/O board, you need some code to store these values
  463.     into the BIOS data segment:
  464.  
  465.         0040:0004  word  I/O address of COM3
  466.         0040:0006  word  I/O address of COM4
  467.         0040:0011  byte (bits 3-1): number of serial ports installed
  468.  
  469.     The documentation with your I/O board should tell you the port
  470.     addresses.  When you know the proper port addresses, you can add
  471.     code to your program to store them and the number of serial ports
  472.     into the BIOS data area before you open communications.  Or you can
  473.     use DEBUG to create a little program to include in your AUTOEXEC.BAT
  474.     file, using this script:
  475.  
  476.             n SET_ADDR.COM      <--- or a different name ending in .COM
  477.             a 100
  478.             mov  AX,0040
  479.             mov  DS,AX
  480.             mov  wo [0004],aaaa <--- replace aaaa with COM3 address or 0
  481.             mov  wo [0006],ffff <--- replace ffff with COM4 address or 0
  482.             and  by [0011],f1
  483.             or   by [0011],8    <--- use number of serial ports times 2
  484.             mov  AH,0
  485.             int  21
  486.                                 <--- this line must be blank
  487.             rCX
  488.             1f
  489.             rBX
  490.             0
  491.             w
  492.             q
  493.  
  494. Q502. How do I find the I/O address of a COM port?
  495.  
  496.     Look in the four words beginning at 0040:0000 for COM1 through COM4.
  497.     (The DEBUG command "D 40:0 L8" will do this.  Remember that words
  498.     are stored and displayed low byte first, so a word value of 03F8
  499.     will be displayed as F8 03.)  If the value is zero, that COM port is
  500.     not installed (or you've got an old BIOS; see the preceding Q).  If
  501.     the value is nonzero, it is the I/O address of the transmit/receive
  502.     register for the COM port.  Each COM port occupies eight consecutive
  503.     I/O addresses (though only seven are used by many chips).
  504.  
  505.     Here's some C code to find the I/O address:
  506.  
  507.         unsigned ptSel(unsigned comport) {
  508.             unsigned io_addr;
  509.             if (comport >= 1  &&  comport <= 4) {
  510.                 unsigned far *com_addr = (unsigned far *)0x00400000UL;
  511.                 io_addr = com_addr[comport-1];
  512.             }
  513.             else
  514.                 io_addr = 0;
  515.             return io_addr;
  516.         }
  517.  
  518. Q503. But aren't the COM ports always at I/O addresses 3F8, 2F8, 3E8,
  519.       and 2E8?
  520.  
  521.     The first two are usually right (though not always); the last two
  522.     are different on many machines.
  523.  
  524. Q504. How do I configure a COM port and use it to transmit data?
  525.  
  526.     After hearing several recommendations, I looked at Joe Campbell's {C
  527.     Programmer's Guide to Serial Communications}, ISBN 0-672-22584-0,
  528.     and agree that it is excellent.  He gives complete details on how
  529.     serial ports work, along with complete programs for doing polled or
  530.     interrupt-driver I/O.  The book is quite thick, and none of it looks
  531.     like filler.
  532.  
  533.     If Campbell's book is overkill for you, you'll find a good short
  534.     description of serial I/O in {DOS 5: A Developer's Guide}, ISBN
  535.     1-55851-177-6, by Al Williams.
  536.  
  537.     You may also want to look at an extended example in Borland's
  538.     TechFax TI445, part of PD1:<MSDOS.TURBO-C> at Simtel.  Though
  539.     written by Borland, much of it is applicable to other forms of C,
  540.     and it should give you ideas for other programming languages.
  541.  
  542. section 6. Other hardware questions and problems
  543. ================================================
  544.  
  545. Q601. Which 80x86 CPU is running my program?
  546.  
  547.     According to an article posted by Michael Davidson, Intel's approved
  548.     code for distinguishing among 8086, 80286, 80386, and 80486 and for
  549.     detecting the presence of an 80287 or 80387 is published in the
  550.     Intel's 486SX processor manual (order number 240950-001).  You can
  551.     download David Kirschbaum's improved version of this from Simtel as
  552.     PD1:<MSDOS.SYSUTL>CPUID593.ZIP.
  553.  
  554.     According to an article posted by its author, WCPU041.ZIP knows the
  555.     differences between DX and SX varieties of 386 and 486 chips, and
  556.     can also detect a math coprocessor.  It's in PD1:<MSDOS.SYSUTL> at
  557.     Simtel.
  558.  
  559. Q602. How can a C program send control codes to my printer?
  560.  
  561.     If you just fprintf(stdprn, ...), C will translate some of your
  562.     control codes.  The way around this is to reopen the printer in
  563.     binary mode:
  564.  
  565.         prn = fopen("PRN", "wb");
  566.  
  567.     You must use a different file handle because stdprn isn't an lvalue.
  568.     By the way, PRN or LPT1 must not be followed by a colon in DOS 5.0.
  569.  
  570.     There's one special case, Ctrl-Z (ASCII 26), the DOS end-of-file
  571.     character.  If you try to send an ASCII 26 to your printer, DOS
  572.     simply ignores it.  To get around this, you need to reset the
  573.     printer from "cooked" to "raw" mode.  Microsoft C users must use int
  574.     21 function 44, "get/set device information".  Turbo C and Borland
  575.     C++ users can use ioctl to accomplish the same thing:
  576.  
  577.         ioctl(fileno(prn), 1, ioctl(fileno(prn),0) & 0xFF | 0x20, 0);
  578.  
  579.     An alternative approach is simply to write the printer output into a
  580.     disk file, then copy the file to the printer with the /B switch.
  581.  
  582.     A third approach is to bypass DOS functions entirely and use the
  583.     BIOS printer functions at INT 17.  If you also fprintf(stdprn,...)
  584.     in the same program, you'll need to use fflush( ) to synchronize
  585.     fprintf( )'s buffered output with the BIOS's unbuffered.
  586.  
  587.     By the way, if you've opened the printer in binary mode from a C
  588.     program, remember that outgoing \n won't be translated to carriage
  589.     return/line feed.  Depending on your printer, you may need to send
  590.     explicit \n\r sequences.
  591.  
  592. Q603. How can I redirect printer output to a file?
  593.  
  594.     Please see section 4, "Disks and files", for the answer.
  595.  
  596. Q604. Which video adapter is installed?
  597.  
  598.     The technique below should work if your BIOS is not too old.  It
  599.     uses three functions from INT 10, the BIOS video interrupt.  (If
  600.     you're using a Borland language, you may not have to do this the
  601.     hard way.  Look for a function called DetectGraph or something
  602.     similar.)
  603.  
  604.     Set AH=12h, AL=0, BL=32h; INT 10h.  If AL is 12h, you have a VGA.
  605.     If not, set AH=12h, BL=10h; INT 10h.  If BL is 0,1,2,3, you have an
  606.     EGA with 64,128,192,256K memory.  If not, set AH=0Fh; INT 10h.  If
  607.     AL is 7, you have an MDA (original monochrome adapter) or Hercules;
  608.     if not, you have a CGA.
  609.  
  610.     I've tested this for my VGA and got the right answer; but I can't
  611.     test it for the other equipment types.  Please let me know by email
  612.     at brown@ncoast.org if your results vary.
  613.  
  614. Q605. How do I switch to 43- or 50-line mode?
  615.  
  616.     Download PD1:<MSDOS.SCREEN>VIDMODE.ZIP from Simtel or one of the
  617.     mirror sites.  It contains .COM utilities and .ASM source code.
  618.  
  619. Q606. How can I find the Microsoft mouse position and button status?
  620.  
  621.     Use INT 33 function 3, described in Ralf Brown's interrupt list.
  622.  
  623.     The Windows manual says that the Logitech mouse is compatible with
  624.     the Microsoft one, so I assume the interrupt will work the same.
  625.